home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / ir.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  1KB  |  41 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE    
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.  
  4.   
  5.    3.26.90    Harry Morris, morris@think.com
  6. */
  7.  
  8. /*----------------------------------------------------------------------*/
  9. /* This code implements a simple Z39.50+WAIS server, which consults a 
  10.    local database useing Brewster's search engine.  The main routine is
  11.    interpret_buffer() which reads the contents of a receive buffer, and 
  12.    writes results back to a send buffer.
  13.  */
  14. /*----------------------------------------------------------------------*/
  15.  
  16. #ifndef IR_H
  17. #define IR_H
  18.  
  19. #include "cdialect.h"
  20.  
  21. #ifdef __cplusplus
  22. /* declare these as C style functions */
  23. extern "C"
  24.     {
  25. #endif /* def __cplusplus */
  26.  
  27. long interpret_buffer _AP((char* receiveBuffer,long receiveBufLen,
  28.                char* sendBuffer,long sendBufLen,
  29.                long* maxBufferSize,
  30.                long waisProtocolVersion,
  31.                char *index_directory));
  32. #ifdef __cplusplus
  33.     }
  34. #endif /* def __cplusplus */
  35.  
  36. #endif /* ndef IR_H */
  37.  
  38.  
  39.  
  40.  
  41.